﻿body {
    background: #f5f7fb;
    font-family: 'Segoe UI',sans-serif;
}

.page-title {
    color: #0b4d8c;
    font-weight: 700;
    letter-spacing: 1px;
}

.contact-card,
.card {
    border-radius: 12px;
    overflow: hidden;
}

.card-header {
    background: cornsilk;
    color: #fff;
    font-weight: 600;
}

    .card-header h4 {
        margin: 0;
        font-size: 22px;
    }

.card-body p {
    font-size: 16px;
    margin-bottom: 12px;
}

.card-body i {
    width: 25px;
}

.officer-table thead {
    background: #0b4d8c;
    color: #fff;
}

.officer-table th {
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
}

.officer-table td {
    vertical-align: middle;
    font-size: 15px;
}

.officer-table tbody tr:hover {
    background: #eef6ff;
    transition: .3s;
}

.officer-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.officer-table td:nth-child(1),
.officer-table td:nth-child(4) {
    text-align: center;
    font-weight: 600;
}

.shadow {
    box-shadow: 0 5px 20px rgba(0,0,0,.08) !important;
}

@media(max-width:768px) {

    .card-body {
        padding: 18px;
    }

    .page-title {
        font-size: 28px;
    }

    .officer-table {
        min-width: 850px;
    }
}
.contact-card{
    border:1px solid #d9e2ef;
    border-radius:10px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 4px 12px rgba(0,0,0,.08);
    margin-bottom:25px;
}

.contact-header{
    background:#0b4d8c;
    color:#fff;
    padding:12px 18px;
    font-size:20px;
    font-weight:600;
}

.contact-header i{
    margin-right:8px;
}

.contact-body{
    padding:20px;
}

.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:18px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item i{
    font-size:22px;
    width:35px;
    margin-top:4px;
}

.contact-item strong{
    display:block;
    color:#0b4d8c;
    margin-bottom:4px;
}

.contact-item p{
    margin:0;
    font-size:16px;
}

.contact-item small{
    color:#6c757d;
}

.contact-item a{
    color:#0d6efd;
    text-decoration:none;
    font-weight:600;
}

.contact-item a:hover{
    text-decoration:underline;
}